home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / dl_exsrc.zoo / strpos.c < prev    next >
C/C++ Source or Header  |  1994-07-02  |  204b  |  12 lines

  1. #include <string.h>
  2. #include "extras.h"
  3.  
  4. int strpos(string, symbol)
  5.   const char *string;
  6.   int symbol;
  7. {
  8.   register char *t = strchr(string, symbol);
  9.  
  10.   return (t ? (int)(t - string) : -1);
  11. }
  12.